const internal/strconv.floatMantBits32

6 uses

	internal/strconv (current package)
		ftoadbox.go#L304: 	floatMantBits32 = 23 // p = 23 for float32.
		ftoadbox.go#L316: 	left = uint32((φ - (φ >> (floatMantBits32 + 2))) >> (64 - floatMantBits32 - 1 - β))
		ftoadbox.go#L317: 	right = uint32((φ + (φ >> (floatMantBits32 + 1))) >> (64 - floatMantBits32 - 1 - β))
		ftoadbox.go#L328: 	return uint32(phi>>(64-floatMantBits32-2-beta)+1) / 2